@import url(https://fonts.googleapis.com/css2?family=Poppins&display=swap);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-align: center;
    text-transform: none;

}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: no-repeat;
    background-size: cover;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.logo {
    font-size: 2em;
    color: rgba(255, 255, 255, 0);
    user-select: none;
}

.cajaw {
    position: relative;
    justify-content: center;
    width: 500px;
    height: 540px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgb(0, 0, 0,  .5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    transform: scale(1);
    transition: transform .5s, height .2s ease;
    text-align: center;
}

.cajaw.active-popup {
    transform: scale(1);
}

.cajaw.active {
    height: 520px
}

.cajaw.caja-login {
    width: 100%;
    padding: 40px;
}

.cajaw .caja-login {
    transition: 018s ease;
    transform: translate(0);
}
.cajaw.active .caja-login {
    transition: none;
    transform: translate(-400px);
}

.caja-login h2 {
    font-size: 2em;
    color: rgb(255, 255, 255);
    text-align: center;
}

.caja-salidas {
    position: relative;
    width: 300px;
    height: 50px;
    border-bottom: 2px solid black;
    margin: 30px 0;
}

.caja-salidas label {
    position: absolute;
    top: 55%;
    left: 5px;
    transform: translate(-50%);
    font-size: 1em;
    color: rgb(255, 255, 255);
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.caja-salidas input:focus~label,
.caja-salidas input:valid~label {
    top: -7px;
}

.caja-salidas input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.caja-salidas .icon {
    position: absolute;
    right: 10px;
    font-size: 1.8em;
    color: black;
    line-height: 60px;
}

.btn {
    width: 100%;
    height: 45px;
    background: rgb(143, 16, 16);
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    color: white;
    font-weight: 500;
}

.btn:hover{
    background-color: white;
    color: black;
}
.pie-pagina {
    width: 100%;
    background-color: #000;
    color: white;
    bottom: 0;
    position: fixed;
}

/* Estilo adicional para el texto dentro del pie de página, si es necesario */
.pie-pagina p {
    margin: 0; /* Elimina el margen predeterminado para el texto dentro del pie de página */
}